users / [USER]

CLI REST-API

home-directory

home-directory
This is a read-write object and valid values are strings.

Datatype-Help:
value must be a string.



See also:
/users/[USER]
/users/[USER]/group
/users/[USER]/description
/users/[USER]/password-encrypted
/users/[USER]/password-type
/users/[USER]/login-shell

REST-API Support:


This object is supported by the REST API:

Method: GET
URL: /api/users/bob


Example using curl:
curl /api/users/bob


Method: PATCH
URL: /api/users/bob
Body:
{
  "home-directory": "Meinberg"
}

Example using curl:
curl -X PATCH /api/users/bob -d
{
  "home-directory": "Meinberg"
}